(C) 1996 AROS - The Amiga Replacement OS


NAME
LONG IEEESPDiv()
SYNOPSIS
LONG y
LONG z

LOCATION
In MathIeeeSingBasBase at offset 14
FUNCTION
Divide two IEEE single precision floating point numbers x = y / z;

INPUTS
y
IEEE single precision floating point
z
IEEE single precision floating point
RESULT
Flags: zero : result is zero negative : result is negative overflow : result is out of range

NOTES
EXAMPLE
BUGS
SEE ALSO
INTERNALS
ALGORITHM: Check if fnum2 == 0: result = 0; Check if fnum1 == 0: result = overflow; The further algorithm comes down to a pen & paper division.
HISTORY
25.06.1997 bergers
*** empty log message ***